/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* BODY */
body {
    background: #f5f7fb;
    color: #1f2937;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* HERO / CTA SECTION */
.cta {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
}

/* INFO SECTION */
.info {
    padding: 50px 20px;
    background: #ffffff;
    margin-top: -20px;
    border-radius: 20px 20px 0 0;
}

.info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.info ul {
    list-style: none;
    padding-left: 0;
}

.info ul li {
    background: #f1f5f9;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #f97316;
}

/* FORM SECTION */
.form-section {
    padding: 60px 20px;
    background: #f5f7fb;
}

.form-section h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #0f172a;
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* INPUTS */
input,
textarea {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: 0.2s ease;
}

input:focus,
textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

/* BUTTON */
button {
    padding: 14px;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #fb923c;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 1.7rem;
    }

    .cta p {
        font-size: 1rem;
    }

    form {
        padding: 18px;
    }
}

/* FOOTER */

footer{
    background:#041d35;
    color:white;
    padding:60px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.footer-grid a{
    display:block;
    color:white;
    text-decoration:none;
    margin-top:10px;
    transition:0.3s;
}

.footer-grid a:hover{
    color:#f28c28;
}

.footer-grid h3,
.footer-grid h4{
    margin-bottom:15px;
}

.copyright{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.15);
}